If you've been reading comp.unix.shell or any of the related groups (comp.unix.questions inter alia) for any amount of time, this should be a familiar topic.
I made this web page on the topic primarily so I'd have a simpler URL than one of those ghastly Deja News searches to hand to people. I've tried to reconstruct Randal's standard form letter from looking at his postings (see end) and added some comments of my own.
If you came here looking for material about abuse of feline animals, try this Alta Vista search instead.
Contents:
cat
kill -9
ls *
wc -l
grep | awk
test
The oldest article Deja News finds is from 1995, but it's actually a followup to an earlier article. By Internet standards, this is thus an Ancient Tradition.
Exercise: Try to find statistically significant differences between the followups from 1995 and the ones being posted today.
(See below for a reconstruction of the Award text.)
Briefly, here's the collected wisdom on using cat:
The purpose of cat is to concatenate (or "catenate") files. If it's only one file, concatenating it with nothing at all is a waste of time, and costs you a process.The fact that the same thread ("but but but, I think it's cleaner / nicer / not that much of a waste / my privelege to waste processes!") springs up virtually every time the Award is posted is also Ancient Usenet Tradition.
Of course, as Heiner points out, using cat
on a single
file to view it from the command line is a valid use of cat
(but you might be better off if you get accustomed to using less
for this instead).
In a recent thread on comp.unix.shell
, the following
example was posted by Andreas Schwab as another Useful Use of Cat
on a lone file:
Here, the contents of the file{ foo; bar; cat mumble; baz } | whatever
mumble
are output
to stdout after the output from the programs foo
and
bar
, and before the output of baz
. All
the generated output is piped to the program whatever
.
(Read up on shell programming constructs if this was news to
you :-)
(See below for a reconstruction of the Award text. It explains the issues clearly enough.)
ls *
for
loop:
Of course, thefor f in `ls *`; do command "$f" # newbies will often forget the quotes, too done
ls
is not very useful. It will just waste
an extra process doing absolutely nothing. The *
glob
will be expanded by the shell before ls
even gets to
see the file names. Here's a related but slightly more benign error
(because echo
is often built into the shell):
But of course the backticks are still useless, the glob itself already does the expansion of the file names. What was meant here was obviouslyfor f in `echo *`; do command "$f" done
Additionally, oftentimes the command in the loop doesn't even need to be run in a for loop, so you might be able to simplify further and sayfor f in *; do command "$f" done
A different issue is how to cope with a glob which expands into file names with spaces in them, but the for loop or the backticks won't help with that (and will even make things harder). The plain glob generates these file names just fine; click here for an example. See also Useless Use of Backtickscommand *
Anything that looks like
can usually be rewritten like something along the lines ofsomething | grep '..*' | wc -l
or even (if all we want to do is check whether something produced any non-empty output lines)something | grep -c . # Notice that . is better than '..*'
(orsomething | grep . >/dev/null && ...
grep -q
if your grep has that).
If something is reasonably coded, it might even already be setting its exit code to tell you whether it succeeded in doing what you asked it to do; in that case, all you have to check is the exit code:
something && ...
I used to have a really wretched example of clueless code (which I had written up completely on my own, to protect the innocent) which I've moved to a separate page and annotated a little bit. It expands on the above and also has a bit about useless use of backticks (q.v.)
Remember thatps -l | grep -v '[g]rep' | awk '{print $2}'
sed
and awk
are
glorified variants of grep
.
So why use grep at all?
Usually you'd like the regex to be tighter than this, especially if your login might happen to include the lettersps -l | awk '!/[a]wk/{print $2}'
grep
or awk
...
True Story from Real Life: an older version of the GNATS system would
think my real name was "System Operator" because it just went looking
for the first occurrence of the letters e-r-a in the
/etc/passwd
file. (Well, actually, it thought my name was
"System Era". It took me a while to figure out how it arrived at this
somewhat whimsical conclusion. Incidentally, you also have to wonder
why the author thought my real name was worth knowing, and if this is
the right way to get that information. The end goal was to produce a
template for an e-mail message -- perhaps my MUA would already know
my real name, and even be able to produce nice e-mail headers for GNATS?)
The cluelessness example (I've put it on a separate page) contains a lot of badly chosen backticks and a somewhat longer discussion of what exactly they can accomplish, and some ideas for how to do it differently.
Obviously, backticks are a valid construction, and you can put them to good use in many shell scripts. I have simply noticed that newbie scripters often generously treat backticks as the hammer for all those nails they see.
Apart from the classical Useless Use of Cat here, the backticks are outright dangerous, unless you know the result of the backticks is going to be less than or equal to how long a command line your shell can accept. (Actually, this is a kernel limitation. The constant ARG_MAX in your limits.h should tell you how much your own system can take. POSIX requires ARG_MAX to be at least 4,096 bytes.)for f in `cat file`; do ... done
Incidentally, this is also one of the Very Ancient Recurring Threads in comp.unix.shell so don't make the mistake of posting anything that resembles this.
The right way to do this is
or, in cases where the command in backticks was something more complicated than a (Useless Use of) cat of a single file,while read f; do ... done <file
The ARG_MAX warning applies to other constructs than for loops too, of course. Generally, commands that look likecommand that used to be in backticks | while read f; do ... done
are usually safer with xargs:command `other command`
The classic example is running something on each one of a number of files listed by find. An additional problem here is that find might find files whose names contain line breaks. GNU find can even cope with that, by using the null character as the file name separator.other command | xargs command
With normal# Note that we use -print0 instead of -print # This is a GNU find -specific option # Similarly, the -0 option to xargs is a GNU feature find -options -more -options -print0 | xargs -r0 command
find
, a user could create a file with
a newline in its name, tricking you into, well, at least missing that
file, and potentially something a lot more dangerous. (Imagine that
you have a nightly cron
job which runs as root and which
removes old files from /tmp
. Now imagine that a malicious
user creates a directory in /tmp
whose name ends in newline,
and in that directory creates etc/
and etc/passwd
.
Then wait for it to grow old, or modify the inode's date stamp with
touch
...)
In case something is still not obvious, the only disallowed file name
characters under Unix are the null character and slash. If a file is
called something like /tmp/moo<newline>/etc/passwd
,
normal find /tmp -print
would output
and/tmp/moo /etc/passwd
xargs
would see two file names here. Changing the record
separator to ASCII 0 means it's now valid for a file name to span
multiple lines, so this becomes a non-issue.
All these UUOC postings remind me of one of my least favourite constructs in (Bourne, FTSOE) shell scripts:(Something like this is also covered in the wc -l section above.)whenmangle the world if [ $? -ne 0 ] ; then echo "Oh dear, mangling the world failed horribly" \ >&2 # shortened, stderr redirection by your humble HTMLizer putback the world exit 255 fiseems to me much cleaner (even when the "then" clause can't be used in a more economical way, or, as with some shells, omitted).if mangle the world ; then : ; else echo "Oh dear, mangling the world failed horribly" \ >&2 # I'm still here putback the world exit 255 fi
(I'll integrate it better with this page as soon as I have the time; I've been keeping it in my inbox for an embarrassing amount of time so I thought I'd better at least move it here where people can see it.)
Some things that bug me:Despite the looks of this embarrassing section, I do appreciate comments and additional ideas for this page. Send me mail with your suggestions!Regular expressions used for searching (not substituting) that begin or end with '.*'. Actually 'anything*' or 'anything?'. If you are willing to accept "zero repetitions" of the anything, why specify it???
Awk scripts that are basically cut unless reordering of fields is needed.
Case conversions in comp.unix.shell (ex. how do I change my file names from UC to LC?) using tr/sed/awk/??? when some shells have builtin case conversions.
Complex schemes to basically eliminate certain chars. For example DOS lines to UNIX lines. Sure read dos2unix(1), but using sed/awk/... when "tr -d '^M'" is all that is needed.
Global changes to a file using sed to create a tmp file and renaming the tmp file, when an "ed(1)" here document would do fine.
comp.unix.shell
faqs.org
archive
(which is where the above links will take you).
I have a
small collection of Unix links
with some more information, too.
(.signature)And of course, if you've been following along for a week or two, you know that this (BING!) is a Useless Use of Cat! Rememeber, nearly all cases where you have: cat file | some_command and its args ... you can rewrite it as: <file some_command and its args ... and in some cases, such as this one, you can move the filename to the arglist as in: some_command and its args ... file Just another Useless Use of Usenet,
(.signature)No no no. Don't use kill -9. It doesn't give the process a chance to cleanly: 1) shut down socket connections 2) clean up temp files 3) inform its children that it is going away 4) reset its terminal characteristics and so on and so on and so on. Generally, send 15, and wait a second or two, and if that doesn't work, send 2, and if that doesn't work, send 1. If that doesn't, REMOVE THE BINARY because the program is badly behaved! Don't use kill -9. Don't bring out the combine harvester just to tidy up the flower pot. Just another Useless Use of Usenet,
...depoh dah I sa llew sa ton ylno ,dekrow ti yltnerappA -- .egap "elpoeP looC" s'ladnaR no dedulcni ti teg ot si egap siht fo esoprup elohw eht ,yllaer oN